Name | Bukkit Event Priority |
Description | Script events that are backed by standard Bukkit events are able to control what underlying Bukkit event priority
they register as. This can be useful, for example, if a different plugin is cancelling the event at a later priority, and you're writing a script that needs to un-cancel the event. This can be done using the "bukkit_priority" switch. Valid priorities, in order of execution, are: LOWEST, LOW, NORMAL, HIGH, HIGHEST, MONITOR. Monitor is executed last, and is intended to only be used when reading the results of an event but not changing it. The default priority is "normal". |
Group | Script Events |
Source | https://github.com/DenizenScript/Denizen/blob/dev/plugin/src/main/java/com/denizenscript/denizen/events/BukkitScriptEvent.java#L526 |